home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / By the Book / Learn C++ (CodeWarrior) / Chap 04.07 - scopeTester / scopeTester.cp < prev    next >
Text File  |  1995-10-20  |  308b  |  20 lines

  1. #include <iostream.h>
  2.  
  3. short    myValue = 5;
  4.  
  5. int    main()
  6. {
  7.     short    yourValue = myValue;
  8.     
  9.     cout << "yourValue: " << yourValue << "\n";
  10.     
  11.     short    myValue = 10;
  12.     yourValue = myValue;
  13.     
  14.     cout << "yourValue: " << yourValue << "\n";
  15.     
  16.     yourValue = ::myValue;
  17.     cout << "yourValue: " << yourValue << "\n";
  18.     
  19.     return 0;
  20. }